Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VM] rename vm catchable and uncatchable exceptions #3538

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

Jim8y
Copy link
Contributor

@Jim8y Jim8y commented Oct 17, 2024

Description

This pr tries to improve the VM exception type and inforamtion, making it easier to understand the VM exception.

Fixes # #3536

Type of change

  • Optimization (the change is only an optimization)
  • Style (the change is only a code style for better maintenance or standard purpose)
  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

Test Configuration:

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules

@Jim8y
Copy link
Contributor Author

Jim8y commented Oct 17, 2024

@roman-khimov @shargon please take a look, this is what i want to do with the exception currently. It just make it clear what the exception are and enfoce an exception message. If you think it is good to go, i will finish this pr. I think nothing will be influenced.

@Jim8y
Copy link
Contributor Author

Jim8y commented Oct 17, 2024

Well, need to udpate UT still~~~ UTs are affected since exception type are different

@@ -59,7 +59,7 @@ public class ExecutionEngine : IDisposable
/// <summary>
/// The VM object representing the uncaught exception.
/// </summary>
public StackItem? UncaughtException { get; internal set; }
public StackItem? UncaughtVMCatchableException { get; internal set; }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that we don't need to rename this one

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not a problem, if you think this pr is ok, will revert it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, you want to throw only VMXXExceptions, ins't it? maybe we should have and interface for valid exceptions

Copy link
Member

@shargon shargon Oct 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

something like IVMException , And catcheable and UnCatcheable

Comment on lines +20 to +21
if (string.IsNullOrEmpty(message))
throw new ArgumentException("Message cannot be null or empty.", nameof(message));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer to avoid this, this error will be throw during runtime, is not a warning for us

Comment on lines +20 to +21
if (string.IsNullOrEmpty(message))
throw new ArgumentException("Message cannot be null or empty.", nameof(message));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here

Copy link
Member

@vncoelho vncoelho left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, @Jim8y

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants